home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
56118
/
56118.xpi
/
chrome
/
content
/
ffbccthis
/
mac
/
bccthis.js
next >
Wrap
Text File
|
2009-12-21
|
1KB
|
26 lines
function ClickBccthis(event) {
if (event.button == 0) {
var d=content.document;
var w=window;
var f='http://bccth.is/bookmarklet/index.php?';
var l=d.location;
var e=encodeURIComponent;
var p='address='+e(l.href)+'&title='+e(d.title);
var u=f+p;
var br = document.getElementById("content");
var wnd = null;
if (br == null || !br.selectedTab)
wnd = document.commandDispatcher.focusedWindow;
else
wnd = br.getBrowserForTab(br.selectedTab).docShell
.QueryInterface(Components.interfaces.nsIInterfaceRequestor)
.getInterface(Components.interfaces.nsIDOMWindow);
var ww = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
.getService(Components.interfaces.nsIWindowWatcher);
var win = ww.openWindow(wnd, u, null, "scrollbars=no,toolbar=no,location=no,resizable=no,status=no,width=590,height=610,chrome=yes,centerscreen,dialog=yes", null);
//w.open(u, null, "scrollbars=no,toolbar=no,location=no,resizable=no,status=no,width=590,height=610,chrome=yes,centerscreen,dialog=yes");
}
}